home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / CMPLTPAS / CLREGION.PAS < prev    next >
Pascal/Delphi Source File  |  1988-07-14  |  314b  |  13 lines

  1. {<<<< ClearRegion >>>>}
  2. { From: COMPLETE TURBO PASCAL 5.0 by Jeff Duntemann  }
  3. { Scott, Foresman & Co. 1988      ISBN 0-673-38355-5 }
  4. { Described in section 18.1   --   Last mod 7/14/88  }
  5.  
  6. PROCEDURE ClearRegion(X1,Y1,X2,Y2 : Integer);
  7.  
  8. BEGIN
  9.   Window(X1,Y1,X2,Y2);
  10.   ClrScr;
  11.   Window(1,1,80,25)
  12. END;
  13.